home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD-ROM Today - The Disc! 21
/
cdromtoday-21.iso
/
mac
/
Multimedia Bird Book
/
PROFILE.DIR
/
00155_Script_155
< prev
next >
Wrap
Text File
|
1995-06-23
|
770b
|
22 lines
on mouseDown
global localDir,magazines
cursor 4
sound stop 1
sound stop 2
set tmpName = char 1 to ( (length(the movieName))-4) of the movieName
set currArticle = splitNums(tmpName)
set currBirdMonth = getAt(currArticle,1)
set currBirdArticle = getAt(currArticle,2)
if (currBirdArticle) = (count(getAt(magazines, currBirdMonth))) then
-- We are at the last article -> go to Theme article
set tmpGo = "THE"&string(currBirdMonth)&".dir"
go "start" of movie localDir&tmpGo
else
-- We are somewhere in the middle
-- Don't forget to skip the explode transition and Everlys speech
set tmpGo = string(currBirdMonth)&"_"&string( (currBirdMonth) +1 )&".dir"
go "main" of movie localDir&tmpGo
end if
end